home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- global firstTime, goOn, notClicked, gMenuButton, gMenuExit, gPlaySound, notOn
- if firstTime then
- member("txtField3").text = EMPTY
- firstTime = 0
- end if
- end
-
- on exitFrame
- global firstTime, notClicked, gMenuButton, gMenuExit, gTourForwardArrow, gTourBackArrow, gTiming, goOn, gPlaySound, goQuick, audioPath, notOn
- if gTiming then
- startTimer()
- gTiming = 0
- end if
- if the timer > (8 * 60) then
- go(the frame + 1)
- else
- go(the frame)
- end if
- repeat with rc in [gMenuButton, gMenuExit, gTourForwardArrow, gTourBackArrow]
- doRollover(rc)
- end repeat
- if goOn then
- notClicked = 1
- goOn = 0
- firstTime = 1
- gPlaySound = 1
- notOn = 1
- go(the frame + 1)
- else
- go(the frame)
- end if
- end
-